Tables [dbo].[UniformLicense]
Properties
PropertyValue
Row Count1782
Created10:31:42 AM Tuesday, March 02, 2010
Last Modified11:40:10 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_UniformLicense: LicenseKey\UniformKeyForeign Keys FK_UniformLicense_License: [dbo].[License].LicenseKeyIndexes IX_UniformLicense_UniformKey_LicenseKey: UniformKey\LicenseKeyLicenseKeyuniqueidentifier16
No
Cluster Primary Key PK_UniformLicense: LicenseKey\UniformKeyIndexes IX_UniformLicense_UniformKey_LicenseKey: UniformKey\LicenseKeyUniformKeyuniqueidentifier16
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_UniformLicense: LicenseKey\UniformKeyPK_UniformLicenseLicenseKey, UniformKey
Yes
IX_UniformLicense_UniformKey_LicenseKeyUniformKey, LicenseKey
Foreign Keys Foreign Keys
NameColumns
FK_UniformLicense_LicenseLicenseKey->[dbo].[License].[LicenseKey]
SQL Script
CREATE TABLE [dbo].[UniformLicense]
(
[LicenseKey] [uniqueidentifier] NOT NULL,
[UniformKey] [uniqueidentifier] NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[UniformLicense] ADD CONSTRAINT [PK_UniformLicense] PRIMARY KEY CLUSTERED ([LicenseKey], [UniformKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_UniformLicense_UniformKey_LicenseKey] ON [dbo].[UniformLicense] ([UniformKey], [LicenseKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[UniformLicense] ADD CONSTRAINT [FK_UniformLicense_License] FOREIGN KEY ([LicenseKey]) REFERENCES [dbo].[License] ([LicenseKey])
GO
Uses
Used By